Passed
Push — master ( 7aa1e4...a37cc0 )
by Kevin Van
05:30
created

GamesPage.render   A

Complexity

Conditions 1

Size

Total Lines 13
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 12
dl 0
loc 13
rs 9.8
c 0
b 0
f 0
cc 1
1
import React, { Component } from "react"
2
3
import MatchesOverview from "../components/MatchesPreseason"
4
import SEO from "../components/seo"
5
import Layout from "../layouts/index"
6
7
class GamesPage extends Component {
8
  render() {
9
    return (
10
      <Layout>
11
        <SEO
12
          lang="nl-BE"
13
          title="Matchoverzicht voorbereiding"
14
          description="Overzicht van alle gespeelde en toekomstige wedstrijden tijdens de voorbereiding van het nieuwe seizoen."
15
          path={this.props.location.pathname}
16
        />
17
        <div className={`games__template`}>
18
          <MatchesOverview />
19
        </div>
20
      </Layout>
21
    )
22
  }
23
}
24
25
export default GamesPage
26